Linux webm002.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
code-snippets
/
js
/
/home/ariannadhf/www/wp-content/plugins/code-snippets/js/edit.tsx
import React from 'react' import { createRoot } from 'react-dom/client' import { SnippetForm } from './components/SnippetForm' const container = document.getElementById('edit-snippet-form-container') if (container) { const root = createRoot(container) root.render(<SnippetForm />) } else { console.error('Could not find snippet edit form container.') }